43f0fc
@@ -130,6 +130,13 @@
public class RowResult implements Writable, Map<byte [], Cell> {
     return this.cells.get(column);
   }
   
+  /**
+   * Get the Cell that corresponds to column, using a String key
+   */
+  public Cell get(String key) {
+    return get(Bytes.toBytes(key));
+  }
+
   /**
    * Row entry.
    */
